Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/097-terminal style landing page

style.css cody/solygambas/html-css-javascript-projects/097-terminal style landing page/style.css
146 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap");

* {
box-sizing: border-box;
padding: 0;
margin: 0;
}

index.html cody/solygambas/html-css-javascript-projects/097-terminal style landing page/index.html
358 Views
0 Comments
<!-- Based on Terminal Style Landing Page | WinBox.js by Brad Traversy (2021)
see: https://www.youtube.com/watch?v=jQCk2yo10YY -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
script.js cody/solygambas/html-css-javascript-projects/097-terminal style landing page/script.js
214 Views
0 Comments
const about = document.querySelector("#about");
const contact = document.querySelector("#contact");
const aboutContent = document.querySelector("#about-content");
const contactContent = document.querySelector("#contact-content");

about.addEventListener("click", () => {
const aboutBox = new WinBox({
title: "About Me",